body {
    background-image: url(/images/splashbackground2.png);
    cursor: url(/images/cursors/melodydefault.png), auto;
    font-family: simple;
}

body a {
    cursor: url(/images/cursors/melodylink.png), auto;
    color: #c65e9f;
}

@font-face {
    font-family: rainyhearts;
    src: url(/fonts/rainyhearts.ttf);
}

@font-face {
    font-family: simple;
    src: url(/fonts/SimpleKindOfGirl-mnnm.ttf);
}

.deer {
    animation: float 4s ease-in-out infinite;
    height: 600px;
    width: 600px;
    margin: auto;
    margin-top: 5%;
}

@keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }
        
        
.groups {
    width: 400px;
    height: 200px;
    border: 3px dotted #69324a;
    background-color: #fff;
    padding: 15px;
    overflow: auto;
    margin: auto;
}